*{
    padding:0;
    margin:0;
    box-sizing:border-box;
    font-family: 
} 
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Noto+Sans:ital@1&display=swap');

body{
    background-color: black;
}
.main{

    width:100%;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.container{
    width:18rem;
  
    padding:10px;
    border-radius:10px;
    font-size: 40px;
    background-color: white;

}
button{
    margin-top:5px;
    width:100%;
    background-color: black;
    color: white;
    border:none;
    border-radius:5px;
    display:block;
    font-size:20px;
}